Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / NotifyCollectionBase<T> Class / RemoveAt Method
The zero-based index of the item to remove.


In This Topic
    RemoveAt Method (NotifyCollectionBase<T>)
    In This Topic
    Removes the item at the specified index.
    Syntax
    'Declaration
     
    Public Overridable Sub RemoveAt( _
       ByVal index As Integer _
    ) 
    'Usage
     
    Dim instance As NotifyCollectionBase(Of T)
    Dim index As Integer
     
    instance.RemoveAt(index)
    public virtual void RemoveAt( 
       int index
    )

    Parameters

    index
    The zero-based index of the item to remove.
    Exceptions
    ExceptionDescription
    index is not a valid index in the collection.
    The collection is read-only.
    See Also